home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 1.3 KB | 52 lines | [TEXT/MPS ] |
- //----------------------------------------------------------------------------------------
- // TMyODPartView.h
- // Copyright © 1996 by Apple Computer, Inc. All rights reserved.
- //----------------------------------------------------------------------------------------
-
- #ifndef __UMYODPARTVIEW__
- #define __UMYODPARTVIEW__
-
- #ifndef __UODPARTVIEW__
- #include "UODPartView.h"
- #endif
-
- // CALib
-
- #ifndef _CALIB_
- #include "CALib.h"
- #endif
-
- // MacApp
-
- #ifndef __UGEOMETRY__
- #include "UGeometry.h"
- #endif
-
- //----------------------------------------------------------------------------------------
- // TMyODPartView
- //----------------------------------------------------------------------------------------
-
- class TMyODPartView : public TODPartView
- {
- MA_DECLARE_CLASS;
-
- public:
-
- TMyODPartView();
- virtual ~TMyODPartView();
- virtual void IMyODPartView(TDocument* itsDocument,
- TView* itsSuperView,
- const VPoint& itsLocation,
- const VPoint& itsSize,
- SizeDeterminer itsHSizeDet,
- SizeDeterminer itsVSizeDet,
- CAFrameRef frameRef);
- virtual void Draw(const VRect& area);
- virtual void AquirePartFromDocument(CADocumentRef sourceDoc);
- };
-
- extern void InitUMyODPartView();
-
-
- #endif
-